home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / music_utilities / pt141.dms / pt141.adf / ArexxExamples.lha / EP_AddUserPrg.rexx < prev    next >
OS/2 REXX Batch file  |  1993-10-20  |  244b  |  17 lines

  1. /* EaglePlayer - Lade angegebenes Userprogram rein */
  2.  
  3. parse arg userprgname
  4.  
  5. address 'rexx_EP'
  6.  
  7. options results
  8.  
  9. adduserprg userprgname
  10.  
  11. if result == "no" then do
  12.     say "Userprogram not loaded !"
  13. end
  14. else do
  15.     say "New Userprogram loaded !"
  16. end
  17.